home *** CD-ROM | disk | FTP | other *** search
- /*
- * List.h
- *
- * Copyright 2000, Silicon Graphics, Inc.
- * ALL RIGHTS RESERVED
- *
- * UNPUBLISHED -- Rights reserved under the copyright laws of the United
- * States. Use of a copyright notice is precautionary only and does not
- * imply publication or disclosure.
- *
- * U.S. GOVERNMENT RESTRICTED RIGHTS LEGEND:
- * Use, duplication or disclosure by the Government is subject to restrictions
- * as set forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights
- * in Technical Data and Computer Software clause at DFARS 252.227-7013 and/or
- * in similar or successor clauses in the FAR, or the DOD or NASA FAR
- * Supplement. Contractor/manufacturer is Silicon Graphics, Inc.,
- * 2011 N. Shoreline Blvd. Mountain View, CA 94039-7311.
- *
- * THE CONTENT OF THIS WORK CONTAINS CONFIDENTIAL AND PROPRIETARY
- * INFORMATION OF SILICON GRAPHICS, INC. ANY DUPLICATION, MODIFICATION,
- * DISTRIBUTION, OR DISCLOSURE IN ANY FORM, IN WHOLE, OR IN PART, IS STRICTLY
- * PROHIBITED WITHOUT THE PRIOR EXPRESS WRITTEN PERMISSION OF SILICON
- * GRAPHICS, INC.
- */
- /*
- * @OSF_COPYRIGHT@
- * (c) Copyright 1990, 1991, 1992, 1993, 1994 OPEN SOFTWARE FOUNDATION, INC.
- * ALL RIGHTS RESERVED
- *
- */
- /*
- * HISTORY
- * Motif Release 1.2.5
- */
- /* $XConsortium: List.h /main/cde1_maint/2 1995/08/18 19:10:00 drk $ */
- /*
- * (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
- #ifndef _XmList_h
- #define _XmList_h
-
- #include <Xm/Xm.h>
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- externalref WidgetClass xmListWidgetClass;
-
- #define XmINITIAL 0
- #define XmADDITION 1
- #define XmMODIFICATION 2
-
- #ifndef XmIsList
- #define XmIsList(w) XtIsSubclass(w, xmListWidgetClass)
- #endif /* XmIsList */
-
- typedef struct _XmListClassRec * XmListWidgetClass;
- typedef struct _XmListRec * XmListWidget;
-
-
- /******** Public Function Declarations ********/
- #ifdef _NO_PROTO
-
- extern void XmListAddItem() ;
- extern void XmListAddItems() ;
- extern void XmListAddItemsUnselected() ;
- extern void XmListAddItemUnselected() ;
- extern void XmListDeleteItem() ;
- extern void XmListDeleteItems() ;
- extern void XmListDeletePositions() ;
- extern void XmListDeletePos() ;
- extern void XmListDeleteItemsPos() ;
- extern void XmListDeleteAllItems() ;
- extern void XmListReplaceItems() ;
- extern void XmListReplaceItemsPos() ;
- extern void XmListReplacePositions() ;
- extern void XmListReplaceItemsUnselected() ;
- extern void XmListReplaceItemsPosUnselected() ;
- extern void XmListSelectItem() ;
- extern void XmListSelectPos() ;
- extern void XmListDeselectItem() ;
- extern void XmListDeselectPos() ;
- extern void XmListDeselectAllItems() ;
- extern void XmListSetPos() ;
- extern void XmListSetBottomPos() ;
- extern void XmListSetItem() ;
- extern void XmListSetBottomItem() ;
- extern void XmListSetAddMode() ;
- extern Boolean XmListItemExists() ;
- extern int XmListItemPos() ;
- extern int XmListGetKbdItemPos() ;
- extern Boolean XmListSetKbdItemPos() ;
- extern Boolean XmListGetMatchPos() ;
- extern Boolean XmListGetSelectedPos() ;
- extern void XmListSetHorizPos() ;
- extern int XmListYToPos();
- extern Boolean XmListPosToBounds();
- extern void XmListUpdateSelectedList() ;
- extern Boolean XmListPosSelected();
- extern Widget XmCreateList() ;
- extern Widget XmCreateScrolledList() ;
-
- #else
-
- extern void XmListAddItem(
- Widget w,
- XmString item,
- int pos) ;
- extern void XmListAddItems(
- Widget w,
- XmString *items,
- int item_count,
- int pos) ;
- extern void XmListAddItemsUnselected(
- Widget w,
- XmString *items,
- int item_count,
- int pos) ;
- extern void XmListAddItemUnselected(
- Widget w,
- XmString item,
- int pos) ;
- extern void XmListDeleteItem(
- Widget w,
- XmString item) ;
- extern void XmListDeleteItems(
- Widget w,
- XmString *items,
- int item_count) ;
- extern void XmListDeletePositions(
- Widget w,
- int *position_list,
- int position_count ) ;
- extern void XmListDeletePos(
- Widget w,
- int pos) ;
- extern void XmListDeleteItemsPos(
- Widget w,
- int item_count,
- int pos) ;
- extern void XmListDeleteAllItems(
- Widget w) ;
- extern void XmListReplaceItems(
- Widget w,
- XmString *old_items,
- int item_count,
- XmString *new_items) ;
- extern void XmListReplaceItemsPos(
- Widget w,
- XmString *new_items,
- int item_count,
- int position) ;
- extern void XmListReplaceItemsUnselected(
- Widget w,
- XmString *old_items,
- int item_count,
- XmString *new_items) ;
- extern void XmListReplaceItemsPosUnselected(
- Widget w,
- XmString *new_items,
- int item_count,
- int position) ;
- extern void XmListReplacePositions(
- Widget w,
- int *position_list,
- XmString *item_list,
- int item_count ) ;
- extern void XmListSelectItem(
- Widget w,
- XmString item,
- #if NeedWidePrototypes
- int notify) ;
- #else
- Boolean notify) ;
- #endif /* NeedWidePrototypes */
- extern void XmListSelectPos(
- Widget w,
- int pos,
- #if NeedWidePrototypes
- int notify) ;
- #else
- Boolean notify) ;
- #endif /* NeedWidePrototypes */
- extern void XmListDeselectItem(
- Widget w,
- XmString item) ;
- extern void XmListDeselectPos(
- Widget w,
- int pos) ;
- extern void XmListDeselectAllItems(
- Widget w) ;
- extern void XmListSetPos(
- Widget w,
- int pos) ;
- extern void XmListSetBottomPos(
- Widget w,
- int pos) ;
- extern void XmListSetItem(
- Widget w,
- XmString item) ;
- extern void XmListSetBottomItem(
- Widget w,
- XmString item) ;
- extern void XmListSetAddMode(
- Widget w,
- #if NeedWidePrototypes
- int add_mode) ;
- #else
- Boolean add_mode) ;
- #endif /* NeedWidePrototypes */
- extern Boolean XmListItemExists(
- Widget w,
- XmString item) ;
- extern int XmListItemPos(
- Widget w,
- XmString item) ;
- extern int XmListGetKbdItemPos(
- Widget w) ;
- extern Boolean XmListSetKbdItemPos(
- Widget w,
- int pos ) ;
- extern int XmListYToPos(
- Widget w,
- Position y) ; /* NeedWidePrototypes ????? */
- extern Boolean XmListPosToBounds(
- Widget w,
- int position,
- Position *x,
- Position *y,
- Dimension *width,
- Dimension *height) ;
- extern Boolean XmListGetMatchPos(
- Widget w,
- XmString item,
- int **pos_list,
- int *pos_count) ;
- extern Boolean XmListGetSelectedPos(
- Widget w,
- int **pos_list,
- int *pos_count) ;
- extern void XmListSetHorizPos(
- Widget w,
- int position) ;
- extern void XmListUpdateSelectedList(
- Widget w) ;
- extern Boolean XmListPosSelected(
- Widget w,
- int pos);
- extern Widget XmCreateList(
- Widget parent,
- char *name,
- ArgList args,
- Cardinal argCount) ;
- extern Widget XmCreateScrolledList(
- Widget parent,
- char *name,
- ArgList args,
- Cardinal argCount) ;
-
- #endif /* _NO_PROTO */
- /******** End Public Function Declarations ********/
-
-
- #ifdef __cplusplus
- } /* Close scope of 'extern "C"' declaration which encloses file. */
- #endif
-
- #endif /* _XmList_h */
- /* DON'T ADD ANYTHING AFTER THIS #endif */
-